home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Menus / High Level / SingleMenuItem.h < prev    next >
Text File  |  1997-06-28  |  311b  |  21 lines

  1. // SingleMenuItem.h
  2.  
  3. #ifndef SingleMenuItem_h
  4. #define SingleMenuItem_h
  5.  
  6. #ifndef MenuSection_h
  7. #include "MenuSection.h"
  8. #endif
  9.  
  10. class SingleMenuItem: public MenuSection,
  11.                              public MenuItem
  12.   {
  13.     public:
  14.         SingleMenuItem( Menu& );
  15.         
  16.         virtual void Choose( uint16 );
  17.         virtual void Choose() = 0;
  18.   };
  19.  
  20. #endif
  21.